|
90 | 90 | "\n", |
91 | 91 | "# The following variables from your .env file are used in this notebook\n", |
92 | 92 | "project_endpoint = os.environ[\"PROJECT_ENDPOINT\"]\n", |
93 | | - "agent_model = os.getenv(\"AGENT_MODEL\", \"gpt-4o-mini\")\n", |
| 93 | + "agent_model = os.getenv(\"AGENT_MODEL\", \"gpt-4.1-mini\")\n", |
94 | 94 | "endpoint = os.environ[\"AZURE_SEARCH_ENDPOINT\"]\n", |
95 | 95 | "credential = DefaultAzureCredential()\n", |
96 | 96 | "token_provider = get_bearer_token_provider(credential, \"https://search.azure.com/.default\")\n", |
97 | 97 | "index_name = os.getenv(\"AZURE_SEARCH_INDEX\", \"earth_at_night\")\n", |
98 | 98 | "azure_openai_endpoint = os.environ[\"AZURE_OPENAI_ENDPOINT\"]\n", |
99 | | - "azure_openai_gpt_deployment = os.getenv(\"AZURE_OPENAI_GPT_DEPLOYMENT\", \"gpt-4o-mini\")\n", |
100 | | - "azure_openai_gpt_model = os.getenv(\"AZURE_OPENAI_GPT_MODEL\", \"gpt-4o-mini\")\n", |
| 99 | + "azure_openai_gpt_deployment = os.getenv(\"AZURE_OPENAI_GPT_DEPLOYMENT\", \"gpt-4.1-mini\")\n", |
| 100 | + "azure_openai_gpt_model = os.getenv(\"AZURE_OPENAI_GPT_MODEL\", \"gpt-4.1-mini\")\n", |
101 | 101 | "azure_openai_embedding_deployment = os.getenv(\"AZURE_OPENAI_EMBEDDING_DEPLOYMENT\", \"text-embedding-3-large\")\n", |
102 | 102 | "azure_openai_embedding_model = os.getenv(\"AZURE_OPENAI_EMBEDDING_MODEL\", \"text-embedding-3-large\")\n", |
103 | 103 | "agent_name = os.getenv(\"AZURE_SEARCH_AGENT_NAME\", \"earth-search-agent\")" |
|
0 commit comments