refactor: rename project from aicl to lmc

This commit is contained in:
mitchell 2026-04-28 17:17:21 -04:00
parent b3fb6fd66f
commit adb0fe234a
6 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@ import os from "node:os";
import chalk from "chalk";
const home = os.homedir();
const configFile = Bun.file(`${home}/.aicl_config.json`);
const configFile = Bun.file(`${home}/.lmc_config.json`);
export interface AppConfig {
model?: string;

View file

@ -2,7 +2,7 @@ import os from "node:os";
import type { ModelMessage } from "ai";
const home = os.homedir();
export const convoFile = Bun.file(`${home}/.aicl_convo.json`);
export const convoFile = Bun.file(`${home}/.lmc_convo.json`);
export interface Conversation {
model: string;