I hereby claim:
- I am LK on github.
- I am lenny (https://keybase.io/lenny) on keybase.
- I have a public key whose fingerprint is 2A95 2077 B6E7 BCF0 AAFB DA35 0E8E 8BB5 2488 04E5
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| [tool.poetry] | |
| name = "api-server-apps" | |
| version = "0.1.0" | |
| description = "" | |
| authors = [] | |
| readme = "README.md" | |
| packages = [] | |
| [tool.poetry.dependencies] | |
| python = "3.9.15" |
| [tool.poetry] | |
| name = "api-server-apps" | |
| version = "0.1.0" | |
| description = "" | |
| authors = [] | |
| readme = "README.md" | |
| packages = [] | |
| [tool.poetry.dependencies] | |
| python = "3.9.15" |
| from openai import OpenAI | |
| import csv | |
| import json | |
| from typing import List, Optional, Literal, Union | |
| from pydantic import BaseModel, Field, constr | |
| import tempfile | |
| import shutil | |
| from pathlib import Path | |
| import os | |
| from io import StringIO |