Fixed Google Colab link in week 3 day 4, and latest week 8 updates

This commit is contained in:
Edward Donner
2024-09-27 08:35:09 -04:00
parent 95596c52f8
commit e02dca5058
18 changed files with 74561 additions and 858 deletions

View File

@@ -0,0 +1,10 @@
import modal
class SpecialistAgent:
def __init__(self):
Pricer = modal.Cls.lookup("pricer-service", "Pricer")
self.pricer = Pricer()
def price(self, description: str) -> float:
return self.pricer.price.remote(description)