Data Store Management
What is data store management?
Init an LM Invoker
from dotenv import load_dotenv
load_dotenv()
from gllm_inference.lm_invoker import GoogleLMInvoker
lm_invoker = GoogleLMInvoker("gemini-2.5-flash-lite")Create a Data Store
store = await lm_invoker.data_store.create()List the Data Stores
Add a File to the Data Store
Assign the Data Store to an LM invoker
Delete the Data Store
Last updated
Was this helpful?