package com.hjx.parent.api; import retrofit2.http.Header; import retrofit2.http.POST; import retrofit2.http.Url; public interface ChatApi { @POST void aiChat(@Url String url, @Header("Authorization") String token); }