├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example.env ├── examples ├── __init__.py ├── basic_usage.py ├── custom_tool.py ├── download_file.py ├── download_trace.py ├── function_call.py ├── streaming.py └── vector_store.py ├── poetry.lock ├── pyproject.toml ├── scripts └── copyright.sh └── tests ├── __init__.py └── test_examples.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/example.env -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/basic_usage.py -------------------------------------------------------------------------------- /examples/custom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/custom_tool.py -------------------------------------------------------------------------------- /examples/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/download_file.py -------------------------------------------------------------------------------- /examples/download_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/download_trace.py -------------------------------------------------------------------------------- /examples/function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/function_call.py -------------------------------------------------------------------------------- /examples/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/streaming.py -------------------------------------------------------------------------------- /examples/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/examples/vector_store.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/scripts/copyright.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-bee/bee-python-sdk/HEAD/tests/test_examples.py --------------------------------------------------------------------------------