How can I use Fine Tuned Model that I have made in Google AI Studio

I created a fine tuned model in AI studio. and I got permission access.
but there’s no any console… could you help with it?

import google.generativeai as genai
import os
# if cannot import google.generativeai
# pip install --no-cache-dir google-generativeai

my_api_key = os.environ["GOOGLE_API_KEY"]
# client = genai.Client(api_key=my_api_key)
genai.configure(api_key=os.environ["GOOGLE_API_KEY"])

for m in genai.list_tuned_models():
  print(m)
  # not print at all..
1 Like