Wpis z mikrobloga

Bez komentarza

import os
import google.generativeai as genai

genai.configure(api_key=os.getenv("GEMINI_API_KEY"))

model = genai.GenerativeModel("models/gemini-1.5-flash")
sample_pdf = genai.upload_file(os.path.join(os.path.dirname(__file__), "pdf.pdf"))
response = model.generate_content(
[
"Please analyze the contents of this document and create pseudocode for any algorithms described within. Focus on extracting the key steps and logic, ensuring that the pseudocode is clear and concise, while accurately representing the algorithm's functionality:",
sample_pdf,
]
)
print(f"{response.text=}")

https://x.com/OfficialLoganK/status/1838611060649054448

#sztucznainteligencja #ai #python #gemini
  • 4
  • Odpowiedz
  • Otrzymuj powiadomienia
    o nowych komentarzach

  • 1
@xavhowk: Da radę. Cały pdf może zwrócić w formacie markdown, wzory matematyczne latex etc. Zrozumie różne diagramy z ilustracji i przedstawi je w zrozumiałej formie tekstowej.
  • Odpowiedz