Skip to content

Commit

Permalink
refactor: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
comoser committed Mar 18, 2024
1 parent 56e5404 commit 1f66ac1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions packages/api/src/ai/facades/ai.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { DocumentConversationChain } from '@/ai/services/document-conversation-c
import { MemoryService } from '@/ai/services/memory.service';
import { SimpleConversationChainService } from '@/ai/services/simple-conversation-chain.service';
import { VectorDbService } from '@/ai/services/vector-db.service';
import { AppConfigService } from '@/app-config/app-config.service';
import { RedisChatMemoryNotFoundException } from '@/chats/exceptions/redis-chat-memory-not-found.exception';
import { AiResponse } from '@/common/types/ai-response';
import { ChatDocument } from '@/common/types/chat';
Expand Down Expand Up @@ -31,7 +30,6 @@ Helpful answer:`

constructor(
private readonly simpleConversationChainService: SimpleConversationChainService,
private readonly appConfigService: AppConfigService,
private readonly memoryService: MemoryService,
private readonly vectorDbService: VectorDbService,
private readonly chatModelService: ChatModelService
Expand Down
2 changes: 1 addition & 1 deletion packages/contract/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "intelli-mate",
"name": "contract",
"version": "1.0.0",
"dependencies": {
"zod": "^3.21.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/web-ui/components/tailwind-indicator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export function TailwindIndicator() {
if (process.env.NODE_ENV === 'production') return null;

return (
<div className="text-xs fixed bottom-1 left-1 z-50 flex h-6 w-6 items-center justify-center rounded-full bg-gray-800 p-3 font-mono text-white">
<div className="fixed bottom-1 left-1 z-50 flex h-6 w-6 items-center justify-center rounded-full bg-gray-800 p-3 font-mono text-xs text-white">
<div className="block sm:hidden">xs</div>
<div className="hidden sm:block md:hidden">sm</div>
<div className="hidden md:block lg:hidden">md</div>
Expand Down

0 comments on commit 1f66ac1

Please sign in to comment.