Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgrim committed Jan 26, 2025
1 parent 4ecac09 commit ca484ab
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions neon_data_models/models/api/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,6 @@ def validate_request(self):
self.system_prompt = self.description
return self

@computed_field
@property
def id(self) -> str:
persona_id = self.name
if self.user_id:
persona_id += f"_{self.user_id}"
return persona_id


class LLMRequest(BaseModel):
query: str = Field(description="Incoming user prompt")
Expand Down

0 comments on commit ca484ab

Please sign in to comment.