julep icon indicating copy to clipboard operation
julep copied to clipboard

A new DSL and server for AI agents and multi-step tasks

Results 188 julep issues
Sort by recently updated
recently updated
newest added
trafficstars

### 🔖 Feature description Right now, most of the code and the FTS settings assume english as the written language. We should add support for multi-lingual text too. For instance,...

enhancement

### 📜 Description ![Image](https://github.com/user-attachments/assets/4b473b1d-929a-4bb2-8ae5-28ebe9307e8a) ### 👟 Reproduction steps _No response_ ### 👀 Have you searched previous issues to see if this has been raised before? - [x] I checked and...

bug
p1
improve-reliability

### 📜 Description ## Worker Stack Trace: ``` worker-1 | INFO:temporalio.workflow:TaskExecutionWorkflow for task cf6e3294-66de-4aba-b019-bd3733d6cd7c [LOC main.0] ({'attempt': 1, 'namespace': 'default', 'run_id': 'd8fcd064-e206-480a-907a-42c08d41dec3', 'task_queue': 'julep-task-queue', 'workflow_id': '067c1696-664c-726a-8000-d6a82280fc51', 'workflow_type': 'TaskExecutionWorkflow'}) worker-1 |...

bug

### 🔖 Feature description Easier to switch between same model name provided by different providers. Also easier to add new models. ### 🎤 Why is this feature needed ? _No...

enhancement

### 📜 Description For example, the following task gets created without any errors: ```yaml name: prompt-message-keys-issue main: - prompt: - role: user content: "Hello" settings: model: "claude-3.5-sonnet" ``` However, it...

bug

### 🔖 Feature description Currently the following task fails. ```yaml main: - prompt: - role: user content: Hello settings: model: $ "gpt-4o-mini" unwrap: true ``` Error transition logs: ``` type:...

enhancement

### 📜 Description For example, here's the context for one of the workflows ([this one](https://dev.julep.ai/tasks-ui/namespaces/default/workflows/0679f971-d310-7d86-8000-31e86241bb42/01d4c188-8ecc-468a-8ef8-d96a7756cd5a/history)): ```json "tools": [ { "type": "api_call", "name": "generate_clip", "spec": { "method": "POST", "url": "https://api.replicate.com/v1/models/minimax/video-01/predictions", "schema_":...

bug
improve-reliability

### 📜 Description _No response_ ### 👟 Reproduction steps _No response_ ### 👀 Have you searched previous issues to see if this has been raised before? - [x] I checked...

bug

### 📜 Description Here's the stack trace: `agents-api-multi-tenant-1 | File "/usr/local/lib/python3.12/site-packages/prometheus_fastapi_instrumentator/middleware.py", line 174, in __call__ agents-api-multi-tenant-1 | raise exc agents-api-multi-tenant-1 | File "/usr/local/lib/python3.12/site-packages/prometheus_fastapi_instrumentator/middleware.py", line 172, in __call__ agents-api-multi-tenant-1 | await...

### 📜 Description So the problem is that if you use `n>1`, api will return more than one result in the `{"choices": [...]}` but then: 1. how do you unwrap?...