SciTeX GenAI
scitex-genai is the standalone home of generative-AI utilities — a unified provider factory for LLMs today, with reserved namespaces for agents, image, audio, video, embeddings, and multimodal as the field fragments by modality.
from scitex_genai import GenAI
ai = GenAI(model="gpt-4o-mini")
print(ai("Explain neural networks in one sentence."))
print("cost USD:", ai.cost)
The umbrella scitex-python exposes this package as scitex.genai.
For classical / deep ML utilities (factored out of the same legacy
scitex.ai) see scitex-ml.
Modality layout
Submodule |
Status |
Notes |
|---|---|---|
|
implemented |
Provider factory |
|
reserved |
claude-agent-sdk wrapper planned. |
|
reserved |
Image generation / editing. |
|
reserved |
TTS / STT / music. |
|
reserved |
Video generation. |
|
reserved |
Embeddings. |
|
reserved |
Any-to-any unified models. |
Reserved namespaces import successfully but raise NotImplementedError
on attribute access — import paths are stable as features land.
Getting Started