Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Local changes #16

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ dependencies = [
"apropos-ai>=0.4.5",
"boto3>=1.35.71",
"botocore>=1.35.71",
"tqdm>=4.66.4"
"craftaxlm>=0.0.7",
"tqdm>=4.66.4",
"craftaxlm>=0.0.5",
]
classifiers = []

Expand Down
5 changes: 2 additions & 3 deletions synth_sdk/tracing/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@
from pprint import pprint
import asyncio
import sys
from pympler import asizeof
from tqdm import tqdm
import boto3
from datetime import datetime

from dotenv import load_dotenv
from typing import Any, Dict, List

import requests
Expand All @@ -19,6 +17,7 @@
from synth_sdk.tracing.abstractions import Dataset, SystemTrace
from synth_sdk.tracing.events.store import event_store

load_dotenv()

# NOTE: This may cause memory issues in the future
def validate_json(data: dict) -> None:
Expand Down
Loading