Ross Lockwood

Results 5 comments of Ross Lockwood

Here is a configuration that is working for me: config_list = [ { "base_url": "https://api.mistral.ai/v1/", "api_key": "YOUR-MISTRAL-KEY-HERE", #"api_type": "open_ai", "model":"mistral-medium" } ] llm_config = { "config_list": config_list, "seed": 42, "temperature":...

Here's the whole codeblock that runs, and a quick workflow: 1) cd Documents/AutoGen 2) conda activate pyautogen 3) python main.py Here's the main.py script: import autogen from autogen import OpenAIWrapper,...

I'm still struggling to get the 'speaker_selection_method="auto"' to work with Mistral. It seems like Mistral models are not generating parsable outputs when they are prompted to select the next speaker....

@cozypet I just upgraded to AutoGen 0.2.6, and now my Mistral configuration fails with the following error. config_list = [ { 'model': 'mistral-medium', 'base_url': 'https://api.mistral.ai/v1/', 'api_key': 'YOUR-API-HERE', } ] Relevant...

@ekzhu I've updated my OAI_CONFIG_LIST json as per your instructions, but I was unable to run your code as written. I get the error that "Cache is not part of...