Agentic AI Course : Week 1

8 weeks

https://edwarddonner.com/2024/11/13/llm-engineering-resources/


 6 week Agentic AI Course

https://github.com/ed-donner/agents


the file .env has all the keys


select kernel



import os openai_api_key = os.getenv('OPENAI_API_KEY') from openai import OpenAI openai = OpenAI() messages = [{"role": "user", "content": "What is 2+2?"}] response = openai.chat.completions.create(     model="gpt-4.1-nano",     messages=messages     ) print(response.choices[0].message.content)

Day 2 : what are AI Agents?


In General



Day 3

Day 4

Compare AI Agent


Resources vs Tools

  • Resource 
    • is a fancy way of saying you can improve an LLM with resources to improve its expertise
    • the way you do that is grab relevant data and shove it into prompt
    • there are techniques like RAG to get really smart at picking relevant content
  • Tools
    • power to do something at its own discretion
  • Build a chatbot that acts like you
  • Using gemini to evealuate GPT4 response : Multi LLM pipeline
      1. We built a function line 27 that uses "gpt4" to ans questions
      2. then line 29 to evaluate answer using gemini , using evaluation object
      3. final piece of puzzle is use a rerun function 
    • this ( chat function , line 35 ) is an example of simple workflow without any framework


Day 5




Misc













Comments

Popular posts from this blog

LLM Engineering course : Day 1

LLM Engineering : Week 2