├── .devcontainer └── devcontainer.json ├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── precommit.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── api │ ├── llms.md │ ├── semantix.md │ ├── types.md │ └── utils.md ├── building-blocks │ ├── large-language-model.md │ ├── methods.md │ ├── semantic-type.md │ ├── tools.md │ └── with-llm.md ├── changelog.md ├── community │ ├── citation.md │ ├── contributors.md │ ├── projects.md │ └── social-media.md ├── contributing.md ├── faq.md ├── guides │ ├── best-practices.md │ └── tutorials.md ├── images │ ├── dark.png │ ├── light.png │ └── logo.png ├── index.html ├── quick-start │ ├── installation.md │ └── minimum-example.md └── roadmap.md ├── examples ├── calorie_estimator.py ├── fruits.jpg ├── grocery_list.py ├── mandela.jpg ├── multilabel_classifier.py ├── object_counter.py ├── personality_finder.py ├── personality_finder_vision.py ├── pii_detector.py ├── ramen.jpg ├── strawberry.py ├── summarizer.py ├── synthetic_data_gen.py └── talent_acquisition.py ├── poetry.lock ├── pyproject.toml ├── scripts └── gh_release.py ├── semantix ├── __init__.py ├── decorators.py ├── inference.py ├── llms │ ├── __init__.py │ ├── _anthropic.py │ ├── _cohere.py │ ├── _google.py │ ├── _groq.py │ ├── _mistral.py │ ├── _openai.py │ ├── _together.py │ └── base.py ├── tools │ └── __init__.py ├── types │ ├── __init__.py │ ├── media.py │ ├── prompt.py │ └── semantic.py └── utils │ ├── __init__.py │ ├── helpers.py │ └── utils.py └── try.ipynb /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/precommit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.github/workflows/precommit.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/api/llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/api/llms.md -------------------------------------------------------------------------------- /docs/api/semantix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/api/semantix.md -------------------------------------------------------------------------------- /docs/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/api/types.md -------------------------------------------------------------------------------- /docs/api/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/api/utils.md -------------------------------------------------------------------------------- /docs/building-blocks/large-language-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/building-blocks/large-language-model.md -------------------------------------------------------------------------------- /docs/building-blocks/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/building-blocks/methods.md -------------------------------------------------------------------------------- /docs/building-blocks/semantic-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/building-blocks/semantic-type.md -------------------------------------------------------------------------------- /docs/building-blocks/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/building-blocks/tools.md -------------------------------------------------------------------------------- /docs/building-blocks/with-llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/building-blocks/with-llm.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/community/citation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/community/contributors.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/community/projects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/community/social-media.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/guides/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/guides/best-practices.md -------------------------------------------------------------------------------- /docs/guides/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/guides/tutorials.md -------------------------------------------------------------------------------- /docs/images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/images/dark.png -------------------------------------------------------------------------------- /docs/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/images/light.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/quick-start/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/quick-start/installation.md -------------------------------------------------------------------------------- /docs/quick-start/minimum-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/quick-start/minimum-example.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /examples/calorie_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/calorie_estimator.py -------------------------------------------------------------------------------- /examples/fruits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/fruits.jpg -------------------------------------------------------------------------------- /examples/grocery_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/grocery_list.py -------------------------------------------------------------------------------- /examples/mandela.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/mandela.jpg -------------------------------------------------------------------------------- /examples/multilabel_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/multilabel_classifier.py -------------------------------------------------------------------------------- /examples/object_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/object_counter.py -------------------------------------------------------------------------------- /examples/personality_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/personality_finder.py -------------------------------------------------------------------------------- /examples/personality_finder_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/personality_finder_vision.py -------------------------------------------------------------------------------- /examples/pii_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/pii_detector.py -------------------------------------------------------------------------------- /examples/ramen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/ramen.jpg -------------------------------------------------------------------------------- /examples/strawberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/strawberry.py -------------------------------------------------------------------------------- /examples/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/summarizer.py -------------------------------------------------------------------------------- /examples/synthetic_data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/synthetic_data_gen.py -------------------------------------------------------------------------------- /examples/talent_acquisition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/examples/talent_acquisition.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/gh_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/scripts/gh_release.py -------------------------------------------------------------------------------- /semantix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/__init__.py -------------------------------------------------------------------------------- /semantix/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/decorators.py -------------------------------------------------------------------------------- /semantix/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/inference.py -------------------------------------------------------------------------------- /semantix/llms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/__init__.py -------------------------------------------------------------------------------- /semantix/llms/_anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_anthropic.py -------------------------------------------------------------------------------- /semantix/llms/_cohere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_cohere.py -------------------------------------------------------------------------------- /semantix/llms/_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_google.py -------------------------------------------------------------------------------- /semantix/llms/_groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_groq.py -------------------------------------------------------------------------------- /semantix/llms/_mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_mistral.py -------------------------------------------------------------------------------- /semantix/llms/_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_openai.py -------------------------------------------------------------------------------- /semantix/llms/_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/_together.py -------------------------------------------------------------------------------- /semantix/llms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/llms/base.py -------------------------------------------------------------------------------- /semantix/tools/__init__.py: -------------------------------------------------------------------------------- 1 | """Build tools for your application.""" 2 | -------------------------------------------------------------------------------- /semantix/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/types/__init__.py -------------------------------------------------------------------------------- /semantix/types/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/types/media.py -------------------------------------------------------------------------------- /semantix/types/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/types/prompt.py -------------------------------------------------------------------------------- /semantix/types/semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/types/semantic.py -------------------------------------------------------------------------------- /semantix/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/utils/__init__.py -------------------------------------------------------------------------------- /semantix/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/utils/helpers.py -------------------------------------------------------------------------------- /semantix/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/semantix/utils/utils.py -------------------------------------------------------------------------------- /try.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dowhiledev/semantix/HEAD/try.ipynb --------------------------------------------------------------------------------