-
Notifications
You must be signed in to change notification settings - Fork 928
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: openrouter with async, async streaming, added async on qdrant, …
…added async on mysql using aiomysql
- Loading branch information
Showing
6 changed files
with
1,295 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ htmlcov | |
chroma.sqlite3 | ||
*.bin | ||
.coverage.* | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,20 +5,26 @@ build-backend = "flit_core.buildapi" | |
[project] | ||
name = "vanna" | ||
version = "0.6.2" | ||
authors = [ | ||
{ name="Zain Hoda", email="[email protected]" }, | ||
] | ||
authors = [{ name = "Zain Hoda", email = "[email protected]" }] | ||
|
||
description = "Generate SQL queries from natural language" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"requests", "tabulate", "plotly", "pandas", "sqlparse", "kaleido", "flask", "flask-sock", "sqlalchemy" | ||
"requests", | ||
"tabulate", | ||
"plotly", | ||
"pandas", | ||
"sqlparse", | ||
"kaleido", | ||
"flask", | ||
"flask-sock", | ||
"sqlalchemy", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -27,13 +33,38 @@ dependencies = [ | |
|
||
[project.optional-dependencies] | ||
postgres = ["psycopg2-binary", "db-dtypes"] | ||
mysql = ["PyMySQL"] | ||
mysql = ["PyMySQL", "aiomysql"] | ||
clickhouse = ["clickhouse_connect"] | ||
bigquery = ["google-cloud-bigquery"] | ||
snowflake = ["snowflake-connector-python"] | ||
duckdb = ["duckdb"] | ||
google = ["google-generativeai", "google-cloud-aiplatform"] | ||
all = ["psycopg2-binary", "db-dtypes", "PyMySQL", "google-cloud-bigquery", "snowflake-connector-python", "duckdb", "openai", "mistralai", "chromadb", "anthropic", "zhipuai", "marqo", "google-generativeai", "google-cloud-aiplatform", "qdrant-client", "fastembed", "ollama", "httpx", "opensearch-py", "opensearch-dsl", "transformers", "pinecone-client", "pymilvus[model]"] | ||
all = [ | ||
"psycopg2-binary", | ||
"db-dtypes", | ||
"PyMySQL", | ||
"aiomysql", | ||
"google-cloud-bigquery", | ||
"snowflake-connector-python", | ||
"duckdb", | ||
"openai", | ||
"mistralai", | ||
"chromadb", | ||
"anthropic", | ||
"zhipuai", | ||
"marqo", | ||
"google-generativeai", | ||
"google-cloud-aiplatform", | ||
"qdrant-client", | ||
"fastembed", | ||
"ollama", | ||
"httpx", | ||
"opensearch-py", | ||
"opensearch-dsl", | ||
"transformers", | ||
"pinecone-client", | ||
"pymilvus[model]", | ||
] | ||
test = ["tox"] | ||
chromadb = ["chromadb"] | ||
openai = ["openai"] | ||
|
Oops, something went wrong.