mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 20:51:48 +00:00
add llm default url config and add pandas in requirements.txt (#59)
This commit is contained in:
@@ -13,7 +13,7 @@ public class LLMConfig {
|
|||||||
@Value("${llm.url:}")
|
@Value("${llm.url:}")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
@Value("${query2sql.path:query2sql}")
|
@Value("${query2sql.path:/query2sql}")
|
||||||
private String queryToSqlPath;
|
private String queryToSqlPath;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,5 +4,4 @@ fastapi==0.95.1
|
|||||||
chromadb==0.3.21
|
chromadb==0.3.21
|
||||||
tiktoken==0.3.3
|
tiktoken==0.3.3
|
||||||
uvicorn[standard]==0.21.1
|
uvicorn[standard]==0.21.1
|
||||||
|
pandas==1.5.3
|
||||||
|
|
||||||
@@ -27,3 +27,6 @@ authentication:
|
|||||||
semantic:
|
semantic:
|
||||||
url:
|
url:
|
||||||
prefix: http://127.0.0.1:9081
|
prefix: http://127.0.0.1:9081
|
||||||
|
|
||||||
|
llm:
|
||||||
|
url: http://127.0.0.1:9092
|
||||||
|
|||||||
@@ -33,3 +33,6 @@ time:
|
|||||||
|
|
||||||
mybatis:
|
mybatis:
|
||||||
mapper-locations=classpath:mappers/custom/*.xml,classpath*:/mappers/*.xml
|
mapper-locations=classpath:mappers/custom/*.xml,classpath*:/mappers/*.xml
|
||||||
|
|
||||||
|
llm:
|
||||||
|
url: http://127.0.0.1:9092
|
||||||
|
|||||||
Reference in New Issue
Block a user