remove gemini key from git
parent
67d6355ed2
commit
be390cfbb1
|
|
@ -158,7 +158,7 @@ if PROXY_URL:
|
|||
|
||||
MODEL_ID_pro = "gemini-3.1-pro-preview"
|
||||
MODEL_ID_flash = "gemini-3-flash-preview"
|
||||
api_key="REMOVED_API_KEY"
|
||||
api_key = os.environ["GEMINI_API_KEY"]
|
||||
|
||||
from pydantic import BaseModel, Field, TypeAdapter
|
||||
from typing import List, Optional, Tuple
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ from collections import defaultdict
|
|||
from concurrent.futures import ThreadPoolExecutor
|
||||
|
||||
MODEL_ID = "gemini-3-flash-preview"
|
||||
api_key="REMOVED_API_KEY"
|
||||
api_key = os.environ["GEMINI_API_KEY"]
|
||||
|
||||
my_prompt = """I'm giving you an image of the left columns of a written exam.
|
||||
Students answer several exercises, which can have several questions.
|
||||
|
|
|
|||
Loading…
Reference in New Issue