ChatApi.java 354 Bytes
package com.hjx.parent.api;

import io.reactivex.Single;
import retrofit2.http.Body;
import retrofit2.http.Header;
import retrofit2.http.POST;
import retrofit2.http.Url;

public interface ChatApi {
    @POST
    Single<ChatResponse> aiChat(
        @Url String url,
        @Header("Authorization") String token,
        @Body ChatRequest body
    );

}