File size: 345 Bytes
403ba57
eae300a
 
 
 
 
403ba57
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from fastapi import FastAPI
import os
session_token = os.environ.get('SessionToken')
conversation_id = os.environ.get('conversation_id')
from revChatGPT.ChatGPT import Chatbot
chatbot = Chatbot({"session_token": session_token}) # You can start a custom conversation

app = FastAPI()

@app.get("/")
def read_root():
    return {"Hello": "World!"}