2023-11-30 07:57:01 +08:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from chat.ask_codebase.chains.smart_qa import SmartQA
|
|
|
|
|
2023-12-08 18:28:36 +08:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "libs"))
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "libs"))
|
2023-11-30 07:57:01 +08:00
|
|
|
|
2023-12-08 18:38:12 +08:00
|
|
|
from ide_services import get_lsp_brige_port # noqa: E402
|
2023-11-30 07:57:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
def query(question, lsp_brige_port):
|
|
|
|
root_path = os.getcwd()
|
2023-12-08 18:28:36 +08:00
|
|
|
|
2023-11-30 07:57:01 +08:00
|
|
|
# Create an instance of SmartQA
|
|
|
|
smart_qa = SmartQA(root_path)
|
|
|
|
|
|
|
|
# Use SmartQA to get the answer
|
2023-12-08 18:28:36 +08:00
|
|
|
answer = smart_qa.run(
|
|
|
|
question=question,
|
|
|
|
verbose=False,
|
|
|
|
dfs_depth=3,
|
|
|
|
dfs_max_visit=10,
|
|
|
|
bridge_url=f"http://localhost:{lsp_brige_port}",
|
|
|
|
)
|
2023-11-30 07:57:01 +08:00
|
|
|
|
|
|
|
# Print the answer
|
|
|
|
print(answer[0])
|
2023-12-08 18:38:12 +08:00
|
|
|
cost = int(float(answer[2].get("token_usage", {}).get("total_cost", 0)) / 0.7 * 10000) / 10000
|
|
|
|
print(f"***/ask-code has costed approximately ${cost} USD for this question.***")
|
2023-11-30 07:57:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
try:
|
|
|
|
if len(sys.argv) < 3:
|
|
|
|
print("Usage: python index_and_query.py query [question] [port]")
|
|
|
|
sys.exit(1)
|
2023-12-08 18:28:36 +08:00
|
|
|
|
2023-11-30 07:57:01 +08:00
|
|
|
port = get_lsp_brige_port()
|
2023-12-08 18:28:36 +08:00
|
|
|
|
2023-11-30 07:57:01 +08:00
|
|
|
question = sys.argv[2]
|
|
|
|
query(question, port)
|
|
|
|
sys.exit(0)
|
|
|
|
except Exception as e:
|
|
|
|
print("Exception: ", e, file=sys.stderr, flush=True)
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2023-12-08 18:28:36 +08:00
|
|
|
main()
|