├── .github └── workflows │ └── docs-release.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── README_CN.md ├── demo └── email_assistant │ ├── README.md │ ├── credentials_example.json │ ├── email_operations.py │ ├── email_tools.py │ ├── main_email_assistant.py │ ├── requirements.txt │ └── run_chat_completion.py ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── README.md │ ├── benchmark.mdx │ ├── faq.md │ ├── inference │ │ ├── _category_.json │ │ ├── llamacpp.mdx │ │ ├── transformers.md │ │ └── vllm.md │ └── models │ │ ├── Mistral.md │ │ ├── Phi.md │ │ ├── Qwen.md │ │ ├── _category_.json │ │ ├── gemma.md │ │ └── llama.md ├── docusaurus.config.js ├── openapi.json ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── BenchmarkTable.js │ │ ├── GradioApp.js │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── ModelTable.css │ │ └── ModelTable.js │ ├── css │ │ └── custom.css │ └── plugins │ │ └── datatables-plugin.js └── static │ ├── .nojekyll │ └── img │ ├── application-architecture-diagram.svg │ ├── examples │ └── browsing │ │ ├── create.png │ │ ├── output.png │ │ └── run.png │ ├── favicon.ico │ ├── llm-config.svg │ ├── logo.svg │ └── rubra-frontend-chat-recording.gif └── pyproject.toml /.github/workflows/docs-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/.github/workflows/docs-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/README_CN.md -------------------------------------------------------------------------------- /demo/email_assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/README.md -------------------------------------------------------------------------------- /demo/email_assistant/credentials_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/credentials_example.json -------------------------------------------------------------------------------- /demo/email_assistant/email_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/email_operations.py -------------------------------------------------------------------------------- /demo/email_assistant/email_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/email_tools.py -------------------------------------------------------------------------------- /demo/email_assistant/main_email_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/main_email_assistant.py -------------------------------------------------------------------------------- /demo/email_assistant/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/requirements.txt -------------------------------------------------------------------------------- /demo/email_assistant/run_chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/demo/email_assistant/run_chat_completion.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/README.md -------------------------------------------------------------------------------- /docs/docs/benchmark.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/benchmark.mdx -------------------------------------------------------------------------------- /docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/faq.md -------------------------------------------------------------------------------- /docs/docs/inference/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/inference/_category_.json -------------------------------------------------------------------------------- /docs/docs/inference/llamacpp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/inference/llamacpp.mdx -------------------------------------------------------------------------------- /docs/docs/inference/transformers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/inference/transformers.md -------------------------------------------------------------------------------- /docs/docs/inference/vllm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/inference/vllm.md -------------------------------------------------------------------------------- /docs/docs/models/Mistral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/Mistral.md -------------------------------------------------------------------------------- /docs/docs/models/Phi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/Phi.md -------------------------------------------------------------------------------- /docs/docs/models/Qwen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/Qwen.md -------------------------------------------------------------------------------- /docs/docs/models/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/_category_.json -------------------------------------------------------------------------------- /docs/docs/models/gemma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/gemma.md -------------------------------------------------------------------------------- /docs/docs/models/llama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docs/models/llama.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/openapi.json -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/BenchmarkTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/BenchmarkTable.js -------------------------------------------------------------------------------- /docs/src/components/GradioApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/GradioApp.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/ModelTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/ModelTable.css -------------------------------------------------------------------------------- /docs/src/components/ModelTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/components/ModelTable.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/plugins/datatables-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/src/plugins/datatables-plugin.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/application-architecture-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/application-architecture-diagram.svg -------------------------------------------------------------------------------- /docs/static/img/examples/browsing/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/examples/browsing/create.png -------------------------------------------------------------------------------- /docs/static/img/examples/browsing/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/examples/browsing/output.png -------------------------------------------------------------------------------- /docs/static/img/examples/browsing/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/examples/browsing/run.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/llm-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/llm-config.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/rubra-frontend-chat-recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/docs/static/img/rubra-frontend-chat-recording.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubra-ai/rubra/HEAD/pyproject.toml --------------------------------------------------------------------------------