@@ -16,7 +16,6 @@ import * as Errors from './core/error';
1616import * as Uploads from './core/uploads' ;
1717import * as API from './resources/index' ;
1818import { APIPromise } from './core/api-promise' ;
19- import { Content , ContentCreateParams , ContentCreateResponse } from './resources/content' ;
2019import { Search , SearchCreateParams , SearchCreateResponse } from './resources/search' ;
2120import { Async } from './resources/async/async' ;
2221import { Chat } from './resources/chat/chat' ;
@@ -720,13 +719,11 @@ export class Perplexity {
720719 chat : API . Chat = new API . Chat ( this ) ;
721720 async : API . Async = new API . Async ( this ) ;
722721 search : API . Search = new API . Search ( this ) ;
723- content : API . Content = new API . Content ( this ) ;
724722}
725723
726724Perplexity . Chat = Chat ;
727725Perplexity . Async = Async ;
728726Perplexity . Search = Search ;
729- Perplexity . Content = Content ;
730727
731728export declare namespace Perplexity {
732729 export type RequestOptions = Opts . RequestOptions ;
@@ -741,12 +738,6 @@ export declare namespace Perplexity {
741738 type SearchCreateParams as SearchCreateParams ,
742739 } ;
743740
744- export {
745- Content as Content ,
746- type ContentCreateResponse as ContentCreateResponse ,
747- type ContentCreateParams as ContentCreateParams ,
748- } ;
749-
750741 export type APIPublicSearchResult = API . APIPublicSearchResult ;
751742 export type ChatMessageInput = API . ChatMessageInput ;
752743 export type ChatMessageOutput = API . ChatMessageOutput ;
0 commit comments