File size: 716 Bytes
638cc2a
feb9bdc
638cc2a
 
feb9bdc
40f80fd
feb9bdc
 
638cc2a
 
 
 
 
 
 
 
 
 
 
feb9bdc
 
 
 
 
638cc2a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#import requests
import os
import asyncio
from pygpt import PyGPT
session_token = os.environ.get('SessionToken')

conversation_id = os.environ.get('conversation_id')

async def main():
    chat_gpt = PyGPT(session_token)
    await chat_gpt.connect()
    await chat_gpt.wait_for_ready()
    answer = await chat_gpt.ask('What is the capital of France?')
    print(answer)
    await chat_gpt.disconnect()

if __name__ == '__main__':
    asyncio.run(main())
    
'''
if __name__ == "__main__":
    headers = {'Authorization': 'yusin'}
    data = {"content": 'am I stupid'}
    response = requests.post('http://93.56.204.222:7788/api/ask', headers=headers, json=data)
    print('this is my answear', response.text)
'''