weco 0.2.27__tar.gz → 0.2.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {weco-0.2.27 → weco-0.2.28}/PKG-INFO +1 -1
- {weco-0.2.27 → weco-0.2.28}/pyproject.toml +1 -1
- {weco-0.2.27 → weco-0.2.28}/weco/constants.py +1 -1
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/PKG-INFO +1 -1
- {weco-0.2.27 → weco-0.2.28}/.github/workflows/lint.yml +0 -0
- {weco-0.2.27 → weco-0.2.28}/.github/workflows/release.yml +0 -0
- {weco-0.2.27 → weco-0.2.28}/.gitignore +0 -0
- {weco-0.2.27 → weco-0.2.28}/LICENSE +0 -0
- {weco-0.2.27 → weco-0.2.28}/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/assets/example-optimization.gif +0 -0
- {weco-0.2.27 → weco-0.2.28}/assets/weco.svg +0 -0
- {weco-0.2.27 → weco-0.2.28}/contributing.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/cuda/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/cuda/evaluate.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/cuda/guide.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/cuda/optimize.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/hello-kernel-world/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/hello-kernel-world/colab_notebook_walkthrough.ipynb +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/hello-kernel-world/evaluate.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/hello-kernel-world/optimize.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/prompt/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/prompt/eval.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/prompt/optimize.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/prompt/prompt_guide.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/competition_description.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/data/sample_submission.csv +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/data/test.csv +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/data/train.csv +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/evaluate.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/spaceship-titanic/train.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/triton/README.md +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/triton/evaluate.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/examples/triton/optimize.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/setup.cfg +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/__init__.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/api.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/auth.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/chatbot.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/cli.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/optimizer.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/panels.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco/utils.py +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/SOURCES.txt +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/dependency_links.txt +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/entry_points.txt +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/requires.txt +0 -0
- {weco-0.2.27 → weco-0.2.28}/weco.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ name = "weco"
|
|
|
8
8
|
authors = [{ name = "Weco AI Team", email = "contact@weco.ai" }]
|
|
9
9
|
description = "Documentation for `weco`, a CLI for using Weco AI's code optimizer."
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
version = "0.2.
|
|
11
|
+
version = "0.2.28"
|
|
12
12
|
license = { file = "LICENSE" }
|
|
13
13
|
requires-python = ">=3.8"
|
|
14
14
|
dependencies = [
|
|
@@ -4,7 +4,7 @@ Constants for the Weco CLI package.
|
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
6
|
# API timeout configuration (connect_timeout, read_timeout) in seconds
|
|
7
|
-
DEFAULT_API_TIMEOUT = (10,
|
|
7
|
+
DEFAULT_API_TIMEOUT = (10, 3650)
|
|
8
8
|
|
|
9
9
|
# Output truncation configuration
|
|
10
10
|
TRUNCATION_THRESHOLD = 51000 # Maximum length before truncation
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|