Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Sep 22, 2024
1 parent e8ba4ac commit f574a44
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions backend/danswer/db/persona.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,6 @@ def upsert_persona(
chunks_above: int = CONTEXT_CHUNKS_ABOVE,
chunks_below: int = CONTEXT_CHUNKS_BELOW,
) -> Persona:
print("upserting with ")
print(starter_messages)
print("-----\n\n\n")
if persona_id is not None:
persona = db_session.query(Persona).filter_by(id=persona_id).first()
else:
Expand Down
1 change: 0 additions & 1 deletion web/src/app/assistants/gallery/AssistantsGallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ export function AssistantsGallery({
user,
assistants
);
console.log(assistants);

const defaultAssistants = assistants
.filter((assistant) => assistant.is_default_persona)
Expand Down
1 change: 0 additions & 1 deletion web/src/app/chat/ChatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,6 @@ export function ChatPage({
mostVisibleMessageId: null,
};

console.log(availableAssistants);
useEffect(() => {
const includes = checkAnyAssistantHasSearch(
messageHistory,
Expand Down

0 comments on commit f574a44

Please sign in to comment.