venice-dev-tools
Version:
unOfficial SDK for the Venice AI API
12 lines (9 loc) • 337 B
text/typescript
// Web implementation index file
import { VeniceWeb } from './venice-web';
import { VeniceAI, VeniceClient } from '@venice-dev-tools/core';
// Re-export everything from core
export * from '@venice-dev-tools/core';
// Export Web-specific implementations
export { VeniceWeb };
// Default export for convenience
export default VeniceWeb;