add ask-code command

This commit is contained in:
bobo.yang 2023-11-30 07:57:01 +08:00
parent 1dc2dfdba1
commit 8a1ece4569
3 changed files with 76 additions and 0 deletions

72
ask-code/ask-code.py Normal file
View File

@ -0,0 +1,72 @@
import os
import sys
import json
from chat.ask_codebase.chains.smart_qa import SmartQA
sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'libs'))
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..' , 'libs'))
from ide_services import get_lsp_brige_port
def output_message(output):
out_data = f"""\n<<Start>>\n{output}\n<<End>>\n"""
print(out_data)
def output_result(output):
result = {"result": f"{output}"}
out_data = f"""\n<<Start>>\n{json.dumps(result)}\n<<End>>\n"""
print(out_data)
def request(data):
output_message(data)
lines = []
while True:
try:
line = input()
if line.strip() == '<<End>>':
break
elif line.strip() == '<<Start>>':
continue
lines.append(line)
except EOFError:
pass
replay_message = '\n'.join(lines)
replay_object = json.loads(replay_message)
return replay_object
def query(question, lsp_brige_port):
root_path = os.getcwd()
# Create an instance of SmartQA
smart_qa = SmartQA(root_path)
# Use SmartQA to get the answer
answer = smart_qa.run(question=question, verbose=False, dfs_depth=3, dfs_max_visit=10, bridge_url=f'http://localhost:{lsp_brige_port}' )
# Print the answer
print(answer[0])
print(f"***/ask-code has costed approximately ${int(float(answer[2]['token_usage']['total_cost'])/0.7*10000)/10000} USD for this question.***")
def main():
try:
if len(sys.argv) < 3:
print("Usage: python index_and_query.py query [question] [port]")
sys.exit(1)
port = get_lsp_brige_port()
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__":
main()

4
ask-code/command.yml Normal file
View File

@ -0,0 +1,4 @@
description: ask codebase.
input: required
steps:
- run: $command_python $command_path/ask-code.py query "$input"

0
ask-code/prompt.txt Normal file
View File