devai-cli/src/devai/commands/msg/standard.py [26:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    code_chat_model = CodeChatModel.from_pretrained("codechat-bison")
    # code_chat_model = CodeChatModel.from_pretrained("codechat-bison-32k")  
    # code_chat_model = ChatModel.from_pretrained("chat-bison@001")
   

    initial_prompt='''
I'm going to provide you with a series of files individually over multiple messages. 
For each file do nothing other than reply with the file name.  
I will signify I'm done sending file with the following string "===LOAD COMPLETE===". 
After I've sent the message "===LOAD COMPLETE===" respond listing all the file names you've received. 
Next I will ask a question about all those files.

Here are the files
'''
    chat = code_chat_model.start_chat()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



devai-cli/src/devai/commands/msg/streaming.py [26:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    code_chat_model = CodeChatModel.from_pretrained("codechat-bison")
    # code_chat_model = CodeChatModel.from_pretrained("codechat-bison-32k")  
    # code_chat_model = ChatModel.from_pretrained("chat-bison@001")
   

    initial_prompt='''
I'm going to provide you with a series of files individually over multiple messages. 
For each file do nothing other than reply with the file name.  
I will signify I'm done sending file with the following string "===LOAD COMPLETE===". 
After I've sent the message "===LOAD COMPLETE===" respond listing all the file names you've received. 
Next I will ask a question about all those files.

Here are the files
'''
    chat = code_chat_model.start_chat()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



