agenta 0.19.6a0__py3-none-any.whl → 0.19.7__py3-none-any.whl

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.

Potentially problematic release.


This version of agenta might be problematic. Click here for more details.

@@ -139,7 +139,7 @@ def add_variant(
139
139
 
140
140
  except Exception as ex:
141
141
  click.echo(click.style(f"Error while building image: {ex}", fg="red"))
142
- return None
142
+ raise
143
143
  try:
144
144
  if overwrite:
145
145
  click.echo(
@@ -166,7 +166,7 @@ def add_variant(
166
166
  click.echo(click.style(f"Error while updating variant: {ex}", fg="red"))
167
167
  else:
168
168
  click.echo(click.style(f"Error while adding variant: {ex}", fg="red"))
169
- return None
169
+ raise
170
170
 
171
171
  agenta_dir = Path.home() / ".agenta"
172
172
  global_toml_file = toml.load(agenta_dir / "config.toml")
@@ -461,28 +461,28 @@ def serve_cli(ctx, app_folder: str, file_name: str, overwrite: bool):
461
461
  error_msg += "or\n"
462
462
  error_msg += ">>> agenta variant serve <filename>.py"
463
463
  click.echo(click.style(f"{error_msg}", fg="red"))
464
- sys.exit(0)
464
+ sys.exit(1)
465
465
 
466
466
  try:
467
467
  config_check(app_folder)
468
468
  except Exception as e:
469
469
  click.echo(click.style("Failed during configuration check.", fg="red"))
470
470
  click.echo(click.style(f"Error message: {str(e)}", fg="red"))
471
- return
471
+ sys.exit(1)
472
472
 
473
473
  try:
474
474
  host = get_host(app_folder)
475
475
  except Exception as e:
476
476
  click.echo(click.style("Failed to retrieve the host.", fg="red"))
477
477
  click.echo(click.style(f"Error message: {str(e)}", fg="red"))
478
- return
478
+ sys.exit(1)
479
479
 
480
480
  try:
481
481
  api_key = helper.get_global_config("api_key")
482
482
  except Exception as e:
483
483
  click.echo(click.style("Failed to retrieve the api key.", fg="red"))
484
484
  click.echo(click.style(f"Error message: {str(e)}", fg="red"))
485
- return
485
+ sys.exit(1)
486
486
 
487
487
  try:
488
488
  variant_id = add_variant(
@@ -491,7 +491,7 @@ def serve_cli(ctx, app_folder: str, file_name: str, overwrite: bool):
491
491
  except Exception as e:
492
492
  click.echo(click.style("Failed to add variant.", fg="red"))
493
493
  click.echo(click.style(f"Error message: {str(e)}", fg="red"))
494
- return
494
+ sys.exit(1)
495
495
 
496
496
  if variant_id:
497
497
  try:
@@ -503,9 +503,11 @@ def serve_cli(ctx, app_folder: str, file_name: str, overwrite: bool):
503
503
  "- Second, try restarting the containers (if using Docker Compose)."
504
504
  )
505
505
  click.echo(click.style(f"{error_msg}", fg="red"))
506
+ sys.exit(1)
506
507
  except Exception as e:
507
508
  click.echo(click.style("Failed to start container with LLM app.", fg="red"))
508
509
  click.echo(click.style(f"Error message: {str(e)}", fg="red"))
510
+ sys.exit(1)
509
511
 
510
512
 
511
513
  @variant.command(name="list")
agenta/sdk/agenta_init.py CHANGED
@@ -240,11 +240,6 @@ def init(
240
240
 
241
241
  singleton.init(app_id=app_id, host=host, api_key=api_key, config_fname=config_fname)
242
242
 
243
- if os.environ.get("AGENTA_LOCAL", False):
244
- singleton.host = singleton.host.replace(
245
- "http://localhost", "http://host.docker.internal"
246
- )
247
-
248
243
  tracing = Tracing(
249
244
  host=singleton.host, # type: ignore
250
245
  app_id=singleton.app_id, # type: ignore
@@ -56,7 +56,6 @@ class instrument(BaseDecorator):
56
56
  input_dict.update(kwargs)
57
57
 
58
58
  async def wrapped_func(*args, **kwargs):
59
-
60
59
  # logging.debug(" ".join([">..", str(tracing_context.get())]))
61
60
 
62
61
  token = None
@@ -124,7 +123,6 @@ class instrument(BaseDecorator):
124
123
  input_dict.update(kwargs)
125
124
 
126
125
  def wrapped_func(*args, **kwargs):
127
-
128
126
  # logging.debug(" ".join([">..", str(tracing_context.get())]))
129
127
 
130
128
  token = None
@@ -196,7 +196,6 @@ class Tracing(metaclass=SingletonMeta):
196
196
  config: Optional[Dict[str, Any]] = None,
197
197
  **kwargs,
198
198
  ) -> CreateSpan:
199
-
200
199
  tracing = tracing_context.get()
201
200
 
202
201
  span_id = self._create_span_id()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agenta
3
- Version: 0.19.6a0
3
+ Version: 0.19.7
4
4
  Summary: The SDK for agenta is an open-source LLMOps platform.
5
5
  Home-page: https://agenta.ai
6
6
  Keywords: LLMOps,LLM,evaluation,prompt engineering
@@ -3,7 +3,7 @@ agenta/cli/evaluation_commands.py,sha256=fs6492tprPId9p8eGO02Xy-NCBm2RZNJLZWcUxu
3
3
  agenta/cli/helper.py,sha256=vRxHyeNaltzNIGrfU2vO0H28_rXDzx9QqIZ_S-W6zL4,6212
4
4
  agenta/cli/main.py,sha256=Wz0ODhoeKK3Qg_CFUhu6D909szk05tc8ZVBB6H1-w7k,9763
5
5
  agenta/cli/telemetry.py,sha256=GaFFRsE_NtrcSSJ10r2jhgFs5Sk8gf2C09Ox3gOr3eU,1317
6
- agenta/cli/variant_commands.py,sha256=NjTXOMaJWyZtwtJiU7Ldl47jTYeC7-vktar1GNO6FVY,17294
6
+ agenta/cli/variant_commands.py,sha256=u2ThjbnE6qnNxNm1vZIXWHfHc-0JPmYnJ-AqpwtM8Ns,17350
7
7
  agenta/cli/variant_configs.py,sha256=PLiuMKadVzs6Gi2uYaT0pZzyULNHDXaTMDWboqpwWdU,1293
8
8
  agenta/client/Readme.md,sha256=zWJ6VMYCG124op5RcqgWBdJdlGkGQ2rPLk9F32rWvqo,2756
9
9
  agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -127,17 +127,17 @@ agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4J
127
127
  agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
128
128
  agenta/docker/docker_utils.py,sha256=5uHMCzXkCvIsDdEiwbnnn97KkzsFbBvyMwogCsv_Z5U,3509
129
129
  agenta/sdk/__init__.py,sha256=cF0de6DiH-NZWEm0XvPN8_TeC1whPBnDf1WYYE1qK2g,762
130
- agenta/sdk/agenta_init.py,sha256=xZEuuSnKm1zgG7YFpMCMXxabbgVyPqnW6am0Qu3n3TU,9958
130
+ agenta/sdk/agenta_init.py,sha256=8MfDuypxohd0qRTdtGjX7L17KW-1UGmzNVdiqF15_ak,9790
131
131
  agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
132
132
  agenta/sdk/context.py,sha256=q-PxL05-I84puunUAs9LGsffEXcYhDxhQxjuOz2vK90,901
133
133
  agenta/sdk/decorators/base.py,sha256=9aNdX5h8a2mFweuhdO-BQPwXGKY9ONPIdLRhSGAGMfY,217
134
134
  agenta/sdk/decorators/llm_entrypoint.py,sha256=umcniOOQfKVdPgHVb_jRhoGKei14Yc3PIZmEC8CU2Wg,22996
135
- agenta/sdk/decorators/tracing.py,sha256=_RCiT6VqOshUtFm7rZhv5mQGl5PioXPDJxb3N8EDOUY,6174
135
+ agenta/sdk/decorators/tracing.py,sha256=c9LwQJkhJcyO7Uq-sNpDSwfwOUTAmlqNuJjz4bSx-k0,6172
136
136
  agenta/sdk/router.py,sha256=0sbajvn5C7t18anH6yNo7-oYxldHnYfwcbmQnIXBePw,269
137
137
  agenta/sdk/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
138
  agenta/sdk/tracing/callbacks.py,sha256=8XYcGC4EZQ0lBn2IWmtPH_yC5Hu6Yu-NkdZRuY7CoTw,6816
139
139
  agenta/sdk/tracing/context_manager.py,sha256=HskDaiORoOhjeN375gm05wYnieQzh5UnoIsnSAHkAyc,252
140
- agenta/sdk/tracing/llm_tracing.py,sha256=k8SfZ7mo2oDUijne00lGkHh1AryzWydZEefT4RtnnWU,13690
140
+ agenta/sdk/tracing/llm_tracing.py,sha256=b94Fx5eIOxOvB6S2zeINq8o2taeRpZgxcfNQlh3Jeq0,13689
141
141
  agenta/sdk/tracing/logger.py,sha256=GfH7V-jBHcn7h5dbdrnkDMe_ml3wkXFBeoQiqR4KVRc,474
142
142
  agenta/sdk/tracing/tasks_manager.py,sha256=ROrWIaqS2J2HHiJtRWiHKlLY8CCsqToP5VeXu7mamck,3748
143
143
  agenta/sdk/tracing/tracing_context.py,sha256=EOi1zfqpb2cBjhBtHIphUkVHi4jiWes-RRNdbgk1kMc,906
@@ -161,7 +161,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
161
161
  agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
162
162
  agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
163
163
  agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
164
- agenta-0.19.6a0.dist-info/METADATA,sha256=0uvnsMgJUeCyZC51VbA-_C67WR4gpzEYNfKQ5onan1E,26462
165
- agenta-0.19.6a0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
166
- agenta-0.19.6a0.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
167
- agenta-0.19.6a0.dist-info/RECORD,,
164
+ agenta-0.19.7.dist-info/METADATA,sha256=-YR2GnRdvGhssiPUE5mqmorr77ZaWarqPT2mckUxMHg,26460
165
+ agenta-0.19.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
166
+ agenta-0.19.7.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
167
+ agenta-0.19.7.dist-info/RECORD,,