Jasper James

Results 30 issues of Jasper James

self.access_token = response.json()["accessToken"] ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^ KeyError: 'accessToken'

bug

Error... Logging in again 当我执行如下代码时,出现这样的错误: from revChatGPT.V2 import Chatbot async def main(): chatbot = Chatbot(email="@gmail.com", password="xxx") async for line in chatbot.ask("Hello"): # print(line["choices"][0]["text"].replace("", ""), end="") print(line) sys.stdout.flush() print() if __name__...

bug

def chat(prompt): """ 问答(POST) """ url = 'http://192.168.18.165:8777/api/local_doc_qa/local_doc_chat' data = { 'user_id': 'zzp', 'kb_ids': ["KB87a14388cc37435694376d038820b1b7"], 'question': f'{prompt}', 'history': [] } response = requests.post(url, data=data) print(response.text) ⚠️ 500 — Internal Server...

When I uploaded a 10+M PDF file, the parsing was not able to parse it for 30 minutes, is the parsing CPU dependent? I realized that GPU is not working...

D:\Download\Working\main>scalene --cli --outfile ./output.log mian.py Scalene: Program did not run for long enough to profile.

### Describe the bug A common button signal and slot function in PyQt6 has problems when compiled with cython. (The original py file works fine) ### Code to reproduce the...

If you are using Ollama alone, Ollama will load the model into the GPU, and you don't have to restart loading the model every time you call Ollama's api. But...

When I do a document query against privategpt using the api, do I have to use the doc_id? A document will be split into multiple doc_ids for storage, and I...

Using pytomlpp to read toml files into python will reformat the toml, which is not very friendly to some key-value pairs that need to be in order.